Skip to main content
GET
/
tariff-properties
/
[beta] List tariff properties
curl --request GET \
  --url https://sandbox.prezio.eu/api/tariff-properties/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    [
      {
        "id": "pro_7",
        "key": "fuse_level",
        "name": "Fuse level",
        "data_type": "CHOICE",
        "group_key": "consumer_setup",
        "group_name": "Consumer setup",
        "question": "What is your fuse level?",
        "description": "Select your fuse level for accurate pricing"
      },
      {
        "id": "pro_12",
        "key": "connection_type",
        "name": "Connection type",
        "data_type": "CHOICE",
        "group_key": "consumer_setup",
        "group_name": "Consumer setup",
        "question": "What type of connection do you have?",
        "description": "Your electrical connection type"
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

consumer_type
enum<string>

Consumer type (RESIDENTIAL or BUSINESS) to filter properties applicable to that consumer type

Available options:
BUSINESS,
RESIDENTIAL
country
enum<string>

Country code (e.g., "DK", "SE") to filter properties available in that country

Available options:
AT,
DK,
FR,
NO,
SE
group
string

Property group code (e.g., "connection_type") to filter by group

local_consumer_type
string[]

Repeatable. Filter by local consumer type (key or lct_ ID) to restrict property variants to those used by matching tariffs.

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

A search term.

tariff_id
string

Tariff ID (incl. prefix "tar_") to get properties used by a specific tariff

Response

List of global tariff properties

count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"